encoding/xml.Decoder.stk (field)

20 uses

	encoding/xml (current package)
		xml.go#L204: 	stk            *stack
		xml.go#L277: 	if d.stk != nil && d.stk.kind == stkEOF {
		xml.go#L285: 			if err == io.EOF && d.stk != nil && d.stk.kind != stkEOF {
		xml.go#L399: 	s.next = d.stk
		xml.go#L401: 	d.stk = s
		xml.go#L406: 	s := d.stk
		xml.go#L408: 		d.stk = s.next
		xml.go#L422: 	start := d.stk
		xml.go#L445: 	if d.stk == nil || d.stk.kind != stkEOF {
		xml.go#L508: 	for d.stk != nil && d.stk.kind != stkStart && d.stk.kind != stkEOF {
		xml.go#L523: 	if d.stk == nil || d.stk.kind != stkStart {
		xml.go#L527: 		if strings.EqualFold(s, d.stk.name.Local) {
		xml.go#L530: 			if !ok || !strings.EqualFold(et.Name.Local, d.stk.name.Local) {
		xml.go#L531: 				return EndElement{d.stk.name}, true